/* Prop Mission - Privacy Policy Styles */

.privacy-hero {
    padding: 80px 0 60px;
    background: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 40%),
        var(--brand-dark);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.last-updated {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.privacy-content-wrapper {
    padding: 80px 0;
    background: #fcfdfe;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background: transparent;
    padding: 2rem 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.privacy-section {
    margin-bottom: 3.5rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.privacy-section h2::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, #f1f5f9, transparent);
}

.privacy-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin: 2rem 0 1rem;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.privacy-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.privacy-section li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.privacy-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--brand-accent);
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .privacy-container {
        padding: 3rem;
        margin: 0 1.5rem;
    }
}

@media (max-width: 640px) {
    .privacy-container {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
    }
    
    .privacy-hero {
        padding: 60px 0 40px;
    }
    
    .privacy-hero h1 {
        font-size: 1.8rem;
    }

    .privacy-section {
        margin-bottom: 2.5rem;
    }
}
